home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / BOXES / ABOUTDLG / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1996-03-23  |  863b  |  47 lines

  1. unit about;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TAboutBox = class(TForm)
  11.     ProgramIcon: TImage;
  12.     BitBtn1: TBitBtn;
  13.     ProductName: TLabel;
  14.     Version: TLabel;
  15.     Copyright: TLabel;
  16.     Bevel1: TBevel;
  17.     Label1: TLabel;
  18.     OSName: TLabel;
  19.     Label2: TLabel;
  20.     OSVersion: TLabel;
  21.     Label3: TLabel;
  22.     CPUName: TLabel;
  23.     Label4: TLabel;
  24.     Memory: TLabel;
  25.     Label6: TLabel;
  26.     DiskFree: TLabel;
  27.     Comments1: TLabel;
  28.     Comments2: TLabel;
  29.     DiskFree1: TLabel;
  30.     procedure BitBtn1Click(Sender: TObject);
  31.   private
  32.     { Private declarations }
  33.   public
  34.     { Public declarations }
  35.   end;
  36.  
  37. implementation
  38.  
  39. {$R *.DFM}
  40.  
  41. procedure TAboutBox.BitBtn1Click(Sender: TObject);
  42. begin
  43.      Close;
  44. end;
  45.  
  46. end.
  47.